home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-09-02 | 604 b | 19 lines | [TEXT/ToyS] |
- try
- tell application "Finder"
- activate
- --your path to the picture folder goes below between the Quotes
- set fileList to every file of ¬
- folder "Macintosh HD:Apple Extras:Sample Desktop Pictures:" whose ¬
- file type obsolete is "JPEG" or ¬
- file type obsolete is "PICT" as list
- set howMany to the number of items in fileList
- get random number howMany
- set theOne to the result
- tell application "Desktop Pictures" to ¬
- set desktop picture to alias (item theOne of fileList as text)
- tell application "Desktop Pictures" to quit
- set fileList to {}
- end tell
- on error
- beep 3
- end try